+1999-01-02 Jeff Garzik <jgarzik@pobox.com>
+
+ * configure.in, config.h.in, gdk/gdkimage.c:
+ Removed features.h test.
+
+ * gdk/gdkdnd.c:
+ Guard public functions against NULL pointer derefs.
+
Fri Jan 1 18:41:09 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c
+1999-01-02 Jeff Garzik <jgarzik@pobox.com>
+
+ * configure.in, config.h.in, gdk/gdkimage.c:
+ Removed features.h test.
+
+ * gdk/gdkdnd.c:
+ Guard public functions against NULL pointer derefs.
+
Fri Jan 1 18:41:09 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c
+1999-01-02 Jeff Garzik <jgarzik@pobox.com>
+
+ * configure.in, config.h.in, gdk/gdkimage.c:
+ Removed features.h test.
+
+ * gdk/gdkdnd.c:
+ Guard public functions against NULL pointer derefs.
+
Fri Jan 1 18:41:09 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c
+1999-01-02 Jeff Garzik <jgarzik@pobox.com>
+
+ * configure.in, config.h.in, gdk/gdkimage.c:
+ Removed features.h test.
+
+ * gdk/gdkdnd.c:
+ Guard public functions against NULL pointer derefs.
+
Fri Jan 1 18:41:09 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c
+1999-01-02 Jeff Garzik <jgarzik@pobox.com>
+
+ * configure.in, config.h.in, gdk/gdkimage.c:
+ Removed features.h test.
+
+ * gdk/gdkdnd.c:
+ Guard public functions against NULL pointer derefs.
+
Fri Jan 1 18:41:09 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c
+1999-01-02 Jeff Garzik <jgarzik@pobox.com>
+
+ * configure.in, config.h.in, gdk/gdkimage.c:
+ Removed features.h test.
+
+ * gdk/gdkdnd.c:
+ Guard public functions against NULL pointer derefs.
+
Fri Jan 1 18:41:09 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c
+1999-01-02 Jeff Garzik <jgarzik@pobox.com>
+
+ * configure.in, config.h.in, gdk/gdkimage.c:
+ Removed features.h test.
+
+ * gdk/gdkdnd.c:
+ Guard public functions against NULL pointer derefs.
+
Fri Jan 1 18:41:09 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c
/* Define if you have the <argz.h> header file. */
#undef HAVE_ARGZ_H
-/* Define if you have the <features.h> header file. */
-#undef HAVE_FEATURES_H
-
/* Define if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H
AC_SUBST(x_libs)
AC_SUBST(xinput_progs)
-AC_CHECK_HEADERS(features.h)
-
if test "x$enable_shm" = "xyes"; then
# Check for shared memory
AC_CHECK_HEADER(sys/ipc.h, AC_DEFINE(HAVE_IPC_H), no_sys_ipc=yes)
void
gdk_drag_context_ref (GdkDragContext *context)
{
+ g_return_if_fail (context != NULL);
+
((GdkDragContextPrivate *)context)->ref_count++;
}
GdkDragContextPrivate *private = (GdkDragContextPrivate *)context;
private->ref_count--;
+ g_return_if_fail (context != NULL);
+
if (private->ref_count == 0)
{
g_dataset_destroy (private);
Window dest_xid)
{
GList *tmp_list = contexts;
+ GdkDragContext *context;
while (tmp_list)
{
- GdkDragContext *context = (GdkDragContext *)tmp_list->data;
+ context = (GdkDragContext *)tmp_list->data;
if ((!context->is_source == !is_source) &&
((source_xid == None) || (context->source_window &&
return None;
}
-Window
+static Window
get_client_window_at_coords (GdkWindowCache *cache,
Window ignore,
gint x_root,
return None;
}
-Window
+static Window
get_client_window_at_coords (Window ignore,
gint x_root,
gint y_root)
GdkDragContextPrivate *private = (GdkDragContextPrivate *)context;
Window dest;
+ g_return_if_fail (context != NULL);
+
if (!private->window_cache)
private->window_cache = gdk_window_cache_new();
{
GdkDragContextPrivate *private = (GdkDragContextPrivate *)context;
+ g_return_val_if_fail (context != NULL, FALSE);
+
if (context->dest_window != dest_window)
{
GdkEvent temp_event;
gdk_drag_drop (GdkDragContext *context,
guint32 time)
{
+ g_return_if_fail (context != NULL);
+
if (context->dest_window)
{
switch (context->protocol)
gdk_drag_abort (GdkDragContext *context,
guint32 time)
{
+ g_return_if_fail (context != NULL);
+
gdk_drag_do_leave (context, time);
}
GdkDragContextPrivate *private;
XEvent xev;
- g_return_if_fail (context != 0);
+ g_return_if_fail (context != NULL);
private = (GdkDragContextPrivate *)context;
{
GdkDragContextPrivate *private;
- g_return_if_fail (context != 0);
+ g_return_if_fail (context != NULL);
private = (GdkDragContextPrivate *)context;
gboolean success,
guint32 time)
{
+ g_return_if_fail (context != NULL);
+
if (context->protocol == GDK_DRAG_PROTO_XDND)
{
XEvent xev;
gdk_window_register_dnd (GdkWindow *window)
{
static guint32 xdnd_version = 3;
-
MotifDragReceiverInfo info;
+ g_return_if_fail (window != NULL);
+
/* Set Motif drag receiver information property */
if (!motif_drag_receiver_info_atom)
#ifndef _XOPEN_SOURCE
# define _XOPEN_SOURCE 1
#endif
-#ifdef HAVE_FEATURES_H
-# include <features.h>
-#endif
#include <stdlib.h>
#include <sys/types.h>
void
gdk_drag_context_ref (GdkDragContext *context)
{
+ g_return_if_fail (context != NULL);
+
((GdkDragContextPrivate *)context)->ref_count++;
}
GdkDragContextPrivate *private = (GdkDragContextPrivate *)context;
private->ref_count--;
+ g_return_if_fail (context != NULL);
+
if (private->ref_count == 0)
{
g_dataset_destroy (private);
Window dest_xid)
{
GList *tmp_list = contexts;
+ GdkDragContext *context;
while (tmp_list)
{
- GdkDragContext *context = (GdkDragContext *)tmp_list->data;
+ context = (GdkDragContext *)tmp_list->data;
if ((!context->is_source == !is_source) &&
((source_xid == None) || (context->source_window &&
return None;
}
-Window
+static Window
get_client_window_at_coords (GdkWindowCache *cache,
Window ignore,
gint x_root,
return None;
}
-Window
+static Window
get_client_window_at_coords (Window ignore,
gint x_root,
gint y_root)
GdkDragContextPrivate *private = (GdkDragContextPrivate *)context;
Window dest;
+ g_return_if_fail (context != NULL);
+
if (!private->window_cache)
private->window_cache = gdk_window_cache_new();
{
GdkDragContextPrivate *private = (GdkDragContextPrivate *)context;
+ g_return_val_if_fail (context != NULL, FALSE);
+
if (context->dest_window != dest_window)
{
GdkEvent temp_event;
gdk_drag_drop (GdkDragContext *context,
guint32 time)
{
+ g_return_if_fail (context != NULL);
+
if (context->dest_window)
{
switch (context->protocol)
gdk_drag_abort (GdkDragContext *context,
guint32 time)
{
+ g_return_if_fail (context != NULL);
+
gdk_drag_do_leave (context, time);
}
GdkDragContextPrivate *private;
XEvent xev;
- g_return_if_fail (context != 0);
+ g_return_if_fail (context != NULL);
private = (GdkDragContextPrivate *)context;
{
GdkDragContextPrivate *private;
- g_return_if_fail (context != 0);
+ g_return_if_fail (context != NULL);
private = (GdkDragContextPrivate *)context;
gboolean success,
guint32 time)
{
+ g_return_if_fail (context != NULL);
+
if (context->protocol == GDK_DRAG_PROTO_XDND)
{
XEvent xev;
gdk_window_register_dnd (GdkWindow *window)
{
static guint32 xdnd_version = 3;
-
MotifDragReceiverInfo info;
+ g_return_if_fail (window != NULL);
+
/* Set Motif drag receiver information property */
if (!motif_drag_receiver_info_atom)
#ifndef _XOPEN_SOURCE
# define _XOPEN_SOURCE 1
#endif
-#ifdef HAVE_FEATURES_H
-# include <features.h>
-#endif
#include <stdlib.h>
#include <sys/types.h>